8f813ab79c28b93af220ce63d009e803b21c42ab,spring-boot-security-saml/src/main/java/com/github/ulisesbocchio/spring/boot/security/saml/configurer/ServiceProviderSecurityBuilder.java,ServiceProviderSecurityBuilder,ssoProfileConsumer,#WebSSOProfileConsumer#,234

Before Change


    }

    public WebSSOProfileConsumerConfigurer ssoProfileConsumer(WebSSOProfileConsumer ssoProfileConsumer) throws Exception {
        return getOrApply(new WebSSOProfileConsumerConfigurer(ssoProfileConsumer));
    }

    public WebSSOProfileHoKConsumerConfigurer hokProfileConsumer() throws Exception {

After Change


     * @throws Exception Any exception during configuration.
     */
    public ServiceProviderSecurityBuilder ssoProfileConsumer(WebSSOProfileConsumer ssoProfileConsumer) throws Exception {
        getOrApply(new WebSSOProfileConsumerConfigurer(ssoProfileConsumer));
        return this;
    }

    /**